* src/keyboard.c (Fexecute_extended_command): Do log the "suggest key
authorZachary Kanfer <zkanfer@gmail.com>
Wed, 30 Mar 2011 13:35:37 +0000 (09:35 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 30 Mar 2011 13:35:37 +0000 (09:35 -0400)
binding" message.

src/ChangeLog
src/keyboard.c

index 4382e61a91fe30c089e3c155401fed6a5d0f50e6..88db1238eea878c25731f5cf91ecb8d65e7e680a 100644 (file)
@@ -1,3 +1,8 @@
+2011-03-30  Zachary Kanfer  <zkanfer@gmail.com>  (tiny change)
+
+       * keyboard.c (Fexecute_extended_command): Do log the "suggest key
+       binding" message (bug#7967).
+
 2011-03-30  Paul Eggert  <eggert@cs.ucla.edu>
 
        Fix more problems found by GCC 4.6.0's static checks.
index 86a2b3e8abd377fe413568ac38483c8102888643..70098d46ebbffc0e93d49b23ad05bded89939fb5 100644 (file)
@@ -10340,9 +10340,9 @@ give to the command you invoke, if it asks for an argument.  */)
          sprintf (newmessage, "You can run the command `%s' with %s",
                   SDATA (SYMBOL_NAME (function)),
                   SDATA (binding));
-         message2_nolog (newmessage,
-                         strlen (newmessage),
-                         STRING_MULTIBYTE (binding));
+         message2 (newmessage,
+                   strlen (newmessage),
+                   STRING_MULTIBYTE (binding));
          if (NUMBERP (Vsuggest_key_bindings))
            waited = sit_for (Vsuggest_key_bindings, 0, 2);
          else